:root {
            --primary: #4CAF50;
            --secondary: #8BC34A;
            --accent: #FFC107;
            --dark-green: #2E7D32;
            --darker-green: #1B5E20;
            --light: #FFFFFF;
            --bg: #FAFAFA;
            --text: #333333;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            background-color: var(--bg);
            line-height: 1.6;
            overflow-x: hidden;
        }
/* Modern Responsive Navbar */
.main-nav {
    background: linear-gradient(90deg, var(--light) 0%, var(--dark-green) 100%);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
}
.nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
    align-items: center;
            justify-content: space-between;
    padding: 0 20px;
    height: 80px;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            color: var(--light);
            font-weight: 700;
            font-size: 2rem;
            text-decoration: none;
            letter-spacing: 1px;
            gap: 10px;
            height: 80px;
          }
          
          .nav-logo img {
            width: 250px;
            height: auto;
            object-fit: contain;
          }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2.2rem;
    cursor: pointer;
}
.nav-list {
            display: flex;
            list-style: none;
    gap: 30px;
    align-items: center;
        }
.nav-link, .dropdown-toggle {
    display: flex;
    align-items: center;
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 1.08rem;
    background: none;
    border: none;
    cursor: pointer;
            position: relative;
        }
.nav-link:hover, .dropdown-toggle:hover, .nav-link.active, .dropdown-toggle.active {
    background: rgba(255,255,255,0.13);
    color: var(--accent);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
        .dropdown {
            position: relative;
        }
.dropdown-menu {
    display: none;
            position: absolute;
    top: 100%;
            left: 0;
    min-width: 220px;
            background: var(--darker-green);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin-top: 4px;
    padding: 8px 0;
    z-index: 1001;
}
.dropdown.open .dropdown-menu {
    display: block;
}
.dropdown-link {
            display: block;
            color: var(--light);
            text-decoration: none;
    padding: 14px 24px;
    font-size: 1rem;
    transition: all 0.2s;
            border-left: 3px solid transparent;
        }
.dropdown-link:hover {
    background: rgba(255,255,255,0.13);
            border-left: 3px solid var(--accent);
    color: var(--accent);
    padding-left: 30px;
}
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    .nav-list {
            display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--darker-green);
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        border-radius: 0 0 18px 18px;
        padding: 30px 0 20px 0;
        z-index: 999;
        animation: slideDown 0.3s cubic-bezier(.4,2,.6,1) forwards;
        gap: 0;
    }
    .nav-list.active {
        display: flex;
    }
    .nav-link, .dropdown-toggle {
        width: 100%;
        text-align: center;
        padding: 16px 0;
        font-size: 1.1rem;
    }
    .dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0 0 18px 18px;
        margin-top: 0;
        padding: 0;
    }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-top: 70px;
        }

        .hero-content {
            max-width: 800px;
            padding: 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero h2 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 30px;
            color: var(--accent);
        }

        .hero-logo {
            font-size: 5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        /* About Section */
        .section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
        }

        .section-title {
            text-align: center;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
        }

        .section-title h2 {
    font-size: 2.8rem;
            font-weight: 700;
            color: var(--dark-green);
    margin-bottom: 20px;
            position: relative;
            display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
    bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
    width: 100px;
            height: 4px;
            background: var(--accent);
        }

.section-title p {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

        .content-box {
            background-color: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 60px;
    margin: 0 auto 40px;
            position: relative;
            overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.content-box:hover {
    transform: translateY(-5px);
        }

        .content-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
    width: 8px;
            height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }

        .content-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #000;
            margin-bottom: 25px;
            text-align: justify;
        }

        .content-box strong {
            color: var(--darker-green);
    font-weight: 600;
        }

        /* Cards Section */
        .cards-container {
            display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
            margin-top: 50px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
        }

        .card {
            background: white;
    border-radius: 15px;
            overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 6px solid var(--primary);
        }

        .card:hover {
            transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .card-header {
    background: linear-gradient(135deg, var(--dark-green), var(--darker-green));
            color: white;
    padding: 25px;
            text-align: center;
        }

        .card-header h3 {
    font-size: 1.8rem;
            margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
        }

        .card-body {
    padding: 30px;
        }

        .card-body ul {
            list-style-type: none;
            padding: 0;
        }

        .card-body li {
    padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
    transition: all 0.3s ease;
}

.card-body li:hover {
    padding-left: 10px;
    background: #f8f9fa;
        }

        .card-body li:last-child {
            border-bottom: none;
        }

        .card-body li i {
            color: var(--primary);
    margin-right: 15px;
            margin-top: 5px;
    font-size: 1.2rem;
        }

        /* Awards Section */
        .awards {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .awards .section-title h2 {
            color: white;
        }

        .awards .section-title h2::after {
            background: var(--accent);
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .award-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .award-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .award-card i {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .award-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .award-card p {
            line-height: 1.7;
        }

        /* Footer */
        footer {
            background: #111;
            position: relative;
            width: 100%;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            padding: 30px 0;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .footer-section h2 {
            font-size: 1.125rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
        }

        .footer-section h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            height: 2px;
            width: 40px;
            background: var(--accent);
        }

        .footer-about p {
            color: #d9d9d9;
            text-align: justify;
            line-height: 1.6;
        }

        .footer-links {
            margin-top: 20px;
        }

        .footer-links a {
            display: inline-block;
            margin-right: 15px;
            color: #d9d9d9;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            font-size: 1.2rem;
            background: #1a1a1a;
            height: 45px;
            width: 45px;
            line-height: 45px;
            text-align: center;
            border-radius: 50%;
            margin-right: 15px;
            color: var(--accent);
        }

        .contact-text {
            color: #d9d9d9;
            font-size: 1rem;
        }

        .footer-links-list {
            list-style: none;
            padding: 0;
        }

        .footer-links-list li {
            margin-bottom: 10px;
        }

        .footer-links-list a {
            color: #d9d9d9;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }

        .footer-links-list a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-links-list i {
            margin-right: 10px;
            color: var(--accent);
        }

        .footer-bottom {
            background: #151515;
            padding: 15px 0;
            text-align: center;
        }

        .footer-bottom p {
            color: #656565;
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
    .dropdown.open .dropdown__menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
        }

        @media (max-width: 768px) {
            .nav__list {
                display: none;
                position: absolute;
        top: 80px;
                left: 0;
                width: 100%;
                background: var(--darker-green);
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
                flex-direction: column;
        padding: 30px 0 20px 0;
                z-index: 999;
        border-radius: 0 0 18px 18px;
        animation: slideDown 0.3s cubic-bezier(.4,2,.6,1) forwards;
            }
            .nav__list.active {
                display: flex;
            }
    .nav__link, .dropdown__toggle {
                width: 100%;
                text-align: center;
        padding: 16px 0;
        font-size: 1.1rem;
            }
            .dropdown__menu {
                position: static;
                width: 100%;
                box-shadow: none;
                margin-top: 10px;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
        border-radius: 0 0 18px 18px;
            }
            .dropdown:hover .dropdown__menu {
                display: block;
            }
            .nav__toggle {
                display: block;
            }
            .hero {
                height: 60vh;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero h2 {
                font-size: 1.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .content-box {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero h2 {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .content-box p {
                font-size: 1rem;
            }
    
    .cards-container, .awards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .card, .content-box, .award-card {
        max-width: 100%;
        padding: 20px 10px;
        box-sizing: border-box;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
        }